home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_bas / vbwarn.zip / FRMABOUT.FRM < prev    next >
Text File  |  1995-12-01  |  1KB  |  44 lines

  1. VERSION 2.00
  2. Begin Form frmAbout 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   3  'Fixed Double
  5.    Caption         =   "About"
  6.    ClientHeight    =   3750
  7.    ClientLeft      =   1155
  8.    ClientTop       =   2160
  9.    ClientWidth     =   7365
  10.    ControlBox      =   0   'False
  11.    Height          =   4155
  12.    Left            =   1095
  13.    LinkTopic       =   "Form2"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   3750
  17.    ScaleWidth      =   7365
  18.    Top             =   1815
  19.    Width           =   7485
  20.    Begin CommandButton cmdOK 
  21.       Caption         =   "OK"
  22.       Height          =   435
  23.       Left            =   2880
  24.       TabIndex        =   0
  25.       Top             =   3180
  26.       Width           =   1515
  27.    End
  28.    Begin Label lblAbout 
  29.       BackColor       =   &H00C0C0C0&
  30.       BorderStyle     =   1  'Fixed Single
  31.       Height          =   2955
  32.       Left            =   120
  33.       TabIndex        =   1
  34.       Top             =   180
  35.       Width           =   7155
  36.    End
  37. End
  38. Option Explicit
  39.  
  40. Sub cmdOK_Click ()
  41.     Unload frmAbout
  42. End Sub
  43.  
  44.